home *** CD-ROM | disk | FTP | other *** search
Text File | 1999-06-21 | 570 b | 35 lines | [TEXT/CWIE] |
- // ===========================================================================
- // TerminationUtils.h ©1999 Eric Traut
- // ===========================================================================
-
- #pragma once
-
-
- /* Type definitions */
- typedef void (*TearDownProcPtr)(void);
-
-
- /* Constant definitions */
- enum
- {
- kMaxTearDownProcs = 10
- };
-
-
- /* Function prototypes */
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- void InitTerminationUtils(void);
- void DisableTearDownProcs(void);
- void InstallTearDownProc(TearDownProcPtr inProcToCall);
-
- #ifdef __cplusplus
- }
- #endif
-
-
-
-
-